Windows 下 git 代理配置

最近更新于 2024-05-05 14:18

相关:

http 代理服务器

设置 git 的 http 代理

git config --global http.proxy http://[IP]:[Port]

设置 git 的 ssh 代理

git config --global core.sshCommand "ssh -o ProxyCommand='connect -H [IP]:[Port] %h %p'"

socks5 代理服务器

设置 git 的 http 代理

git config --global http.proxy socks5://[IP]:[Port]
Windows 下 git 代理配置
Scroll to top